local Player = game:GetService("Players").LocalPlayer local UInput = game:GetService("UserInputService") UInput.InputBegan:Connect(function(input,gamepro) if gamepro then return elseif input.KeyCode == Enum.KeyCode.E then print("Test") end end)